home *** CD-ROM | disk | FTP | other *** search
- ;void intense_off();
-
- EXTRN _memory_model:byte
- EXTRN _color:byte
-
- _TEXT SEGMENT BYTE PUBLIC 'CODE'
- ASSUME CS:_TEXT
- PUBLIC _intense_off
- _intense_off proc near
- mov al,_color ;get the current color
- and al,11110111B ;clear the relevant bit
- mov _color,al ;set the value
- cmp _memory_model,0 ;quit
- jle quit ;
- db 0CBh ;RET far
- quit: ret ;RET near
- _intense_off endp
- _TEXT ENDS
- END